home *** CD-ROM | disk | FTP | other *** search
- program DemoE002;
- {------------------------------------------------------------------------------
- DBase File Display
- Expanded Sample 2
- Demo Program
-
- Copyright (c) Richard F. Griffin
-
- 10 February 1992
-
- 102 Molded Stone Pl
- Warner Robins, GA 31088
-
- -------------------------------------------------------------
- Display and edit all record fields on-screen. This example also
- allows editing of the memo record.
-
- ********** Not For Use in a TurboVision Environment **********
-
- If it does not already exist, the DEMOE2.DBF file will be created
- by using the MakeTestData procedure in GS_GENF.PAS.
-
- All fields in the dBase record will be displayed on-screen using
- the FieldDisplay procedure in GS_dBFld_Objt. They can be modified
- and stored back to the dBase file using the FieldAccept procedure.
-
- -------------------------------------------------------------------------------}
- uses
- CRT,
- DOS,
- GS_KeyI,
- GS_dBFld,
- GS_dBase,
- GS_FileH,
- GS_GenF;
- var
- MyFile : GS_dBFld_Objt;
- CkFile : file;
- DumyStr : string;
-
- procedure DisplayRecord;
- begin